@charset "UTF-8";
/* CSS Document */
body,fieldset,h1,h2,h3,h4,h5,h6,html,legend span,li,p,ul{margin:0;padding:0;}
body{overflow-x:hidden;}

/*html5*/
article,aside,dialog,figure,footer,header,menu,nav,section{display:block;}
li,ol,ul{list-style:none;}
*{margin:0 auto;padding:0;}
img{border:0;}
a{text-decoration:none;font-family:"微软雅黑","Myriad Set Pro","Helvetica Neue",Helvetica,Arial,sans-serif;}
input,textarea{overflow:auto;outline:0;border:none;background-color:transparent;}
.dw{clear:both;}
img{vertical-align: baseline;}

/*动画效果*/
/* 旋转180 */
.ico-rotate{-webkit-transition: -webkit-transform 0.4s ease-out;-moz-transition: -moz-transform 0.4s ease-out;-o-transition: -o-transform 0.4s ease-out;-ms-transition: -ms-transform 0.4s ease-out;}
a:hover .ico-rotate{-webkit-transform: rotateZ(180deg);-moz-transform: rotateZ(180deg);-o-transform: rotateZ(180deg);-ms-transform: rotateZ(180deg);transform: rotateZ(180deg);}
/* 震颤 */
a:hover .ico-shake{-webkit-animation:shake 1s ease;-moz-animation:shake 1s ease;-ms-animation:shake 1s ease;animation:shake 1s ease;}
@-webkit-keyframes shake{0%,100%{-webkit-transform:translateX(0);} 10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);} 20%,40%,60%,80%{-webkit-transform:translateX(10px);}}
@-moz-keyframes shake{0%,100%{-moz-transform:translateX(0);} 10%,30%,50%,70%,90%{-moz-transform:translateX(-10px);} 20%,40%,60%,80%{-moz-transform:translateX(10px);}}
@-ms-keyframes shake{0%,100%{-ms-transform:translateX(0);} 10%,30%,50%,70%,90%{-ms-transform:translateX(-10px);} 20%,40%,60%,80%{-ms-transform:translateX(10px);}}
@keyframes shake{0%,100%{transform:translateX(0);} 10%,30%,50%,70%,90%{transform:translateX(-10px);} 20%,40%,60%,80%{transform:translateX(10px);}}
/* 翻入-Y轴 */
a:hover .ico-flipinY{-webkit-animation:flipinY 1.5s ease-out backwards;-moz-animation:flipinY 1.5s ease-out backwards;-ms-animation:flipinY 1.5s ease-out backwards;animation:flipinY 1.5s ease-out backwards;}
@-webkit-keyframes flipinY{0%{-webkit-transform:perspective(400px) rotateY(90deg);opacity:0;} 40%{-webkit-transform:perspective(400px) rotateY(-10deg);} 70%{-webkit-transform:perspective(400px) rotateY(10deg);} 100%{-webkit-transform:perspective(400px) rotateY(0);opacity:1
                                                                                                                                                                                                                   ;}}
@-moz-keyframes flipinY{0%{-moz-transform:perspective(400px) rotateY(90deg);opacity:0;} 40%{-moz-transform:perspective(400px) rotateY(-10deg);} 70%{-moz-transform:perspective(400px) rotateY(10deg);} 100%{-moz-transform:perspective(400px) rotateY(0);opacity:1;}}
@-ms-keyframes flipinY{0%{-ms-transform:perspective(400px) rotateY(90deg);opacity:0;} 40%{-ms-transform:perspective(400px) rotateY(-10deg);} 70%{-ms-transform:perspective(400px) rotateY(10deg);} 100%{-ms-transform:perspective(400px) rotateY(0);opacity:1;}}
@keyframes flipinY{0%{transform:perspective(400px) rotateY(90deg);opacity:0;} 40%{transform:perspective(400px) rotateY(-10deg);} 70%{transform:perspective(400px) rotateY(10deg);} 100%{transform:perspective(400px) rotateY(0);opacity:1;}}
/* 淡入-从右 */
a:hover .ico-fadeinR{-webkit-animation:fadeinR 1s ease-out backwards;-moz-animation:fadeinR 1s ease-out backwards;-ms-animation:fadeinR 1s ease-out backwards;animation:fadeinR 1s ease-out backwards;}
@-webkit-keyframes fadeinR{0%{opacity:0;-webkit-transform:translateX(20px);} 100%{opacity:1;-webkit-transform:translateX(0);}}
@-moz-keyframes fadeinR{0%{opacity:0;-moz-transform:translateX(20px);} 100%{opacity:1;-moz-transform:translateX(0);}}
@-ms-keyframes fadeinR{0%{opacity:0;-ms-transform:translateX(20px);} 100%{opacity:1;-ms-transform:translateX(0);}}
@keyframes fadeinR{0%{opacity:0;transform:translateX(20px);} 100%{opacity:1;transform:translateX(0);}}
/* 弹入 */
a:hover .ico-bouncein{-webkit-animation:bouncein 1s ease-out backwards;-moz-animation:bouncein 1s ease-out backwards;-ms-animation:bouncein 1s ease-out backwards;animation:bouncein 1s ease-out backwards;}
@-webkit-keyframes bouncein{0%{opacity:0;-webkit-transform:scale(0.3);} 50%{opacity:1;-webkit-transform:scale(1.05);} 70%{-webkit-transform:scale(0.9);} 100%{-webkit-transform:scale(1);}}
@-moz-keyframes bouncein{0%{opacity:0;-moz-transform:scale(0.3);} 50%{opacity:1;-moz-transform:scale(1.05);} 70%{-moz-transform:scale(0.9);} 100%{-moz-transform:scale(1);}}
@-ms-keyframes bouncein{0%{opacity:0;-ms-transform:scale(0.3);} 50%{opacity:1;-ms-transform:scale(1.05);} 70%{-ms-transform:scale(0.9);} 100%{-ms-transform:scale(1);}}
@keyframes bouncein{0%{opacity:0;transform:scale(0.3);} 50%{opacity:1;transform:scale(1.05);} 70%{transform:scale(0.9);} 100%{transform:scale(1);}}
/* 闪烁 */
a:hover .ico-flash{-webkit-animation:flash 1s ease;-moz-animation:flash 1s ease;-ms-animation:flash 1s ease;animation:flash 1s ease;}
@-webkit-keyframes flash{0%,50%,100%{opacity:1;} 25%,75%{opacity:0;}}
@-moz-keyframes flash{0%,50%,100%{opacity:1;} 25%,75%{opacity:0;}}
@-ms-keyframes flash{0%,50%,100%{opacity:1;} 25%,75%{opacity:0;}}
@keyframes flash{0%,50%,100%{opacity:1;} 25%,75%{opacity:0;}}
/* 淡入-从下 */
a:hover .ico-fadeinB{-webkit-animation:fadeinB 1s ease-out backwards;-moz-animation:fadeinB 1s ease-out backwards;-ms-animation:fadeinB 1s ease-out backwards;animation:fadeinB 1s ease-out backwards;}
@-webkit-keyframes fadeinB{0%{opacity:0;-webkit-transform:translateY(20px);} 100%{opacity:1;-webkit-transform:translateY(0);}}
@-moz-keyframes fadeinB{0%{opacity:0;-moz-transform:translateY(20px);} 100%{opacity:1;-moz-transform:translateY(0);}}
@-ms-keyframes fadeinB{0%{opacity:0;-ms-transform:translateY(20px);} 100%{opacity:1;-ms-transform:translateY(0);}}
@keyframes fadeinB{0%{opacity:0;transform:translateY(20px);} 100%{opacity:1;transform:translateY(0);}}



.Second_banner{  width:1013px; height:40px; line-height:40px;margin:0 auto;}
.Second_banner li{ font-size:12px; color:#a1a7b2; float:left; padding-right:8px;}
.Second_banner li a{color:#a1a7b2;}

/*栏目页*/
.Second_news_0101bg,
.Second_news_0201bg,
.Second_news_0701bg,
.Second_news_0301,
.Second_news_0401bg,
.Second_zhw_0501bg,
.Second_zhw_0503bg,
.Three_zhnlist_03{background:#d42b2b; }
.lmy-wrapper .Three_zhnlist_01{ font-size:16px; font-weight:bold; width:995px; height:36px; border:1px solid #dedede; position:relative; border-top:1px solid #d42b2b; background:#f7f7f7; padding-left:18px;clear: both;margin:0 auto;}
.lmy-wrapper .Three_zhnlist_more{ position:absolute; right:11px; top:3px;  width:12px; height:30px; background:url(zhnlist_img_02.png) no-repeat center; cursor:pointer;}
.lmy-wrapper .Three_zhnlist_02{ width:1013px;margin:0 auto;}
.lmy-wrapper .Three_zhnlist_0201{ float:left; width:70%; font-size:14px; height:28px; line-height:28px; background:url(ico4.png) no-repeat left center; padding-left:10px;  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.lmy-wrapper .Three_zhnlist_0201 a{ color:#333;}
.lmy-wrapper .Three_zhnlist_03{ height:36px; color:#fff; font-size:16px; font-weight:bold; line-height:36px; text-align:center; padding:0 14px; float:left;padding-top:1px;margin-top:-1px;}
.lmy-wrapper .Three_zhnlist_03 a{ color:#fff;}
.lmy-wrapper .Three_zhnlist_dw01{ height:10px;}
.lmy-wrapper .nav04Left02_content{ font-size:14px; width:80%; float:left; background:url(ico4.png) no-repeat left center; padding-left:14px; height:26px; line-height:26px;}
.lmy-wrapper .nav04Left02_content:hover{background:url(ico4.1.png) no-repeat left center;}
.lmy-wrapper .nav04Left02_content a{ color:#333; display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.lmy-wrapper .nav04Left02_content a:hover{ color:#1a92ff;}
.lmy-wrapper .nav04Left02_content br{display:none;}
.lmy-wrapper .nav04Left02_content div{display:inline;}
.lmy-wrapper .nav04Left02_contenttime{ float:right; font-size:12px; color:#999; height:26px; line-height:26px;}
.lmy-wrapper .Three_zhnlist02_dw01{ height:30px; background:url(search_img_03.png) repeat-x left center; width:1013px;margin:0 auto;}
.lmy-wrapper .Second_fuw_0202_fy{ height:50px; clear:both; width:668px; text-align:center; padding-top:7px;margin:0 auto;}
.lmy-wrapper .aoutheight{ position:relative;height:auto !important;}
.lmy-wrapper .Second_fuw_0202dw{ clear:both; height:14px;}
.lmy-wrapper .Second_fuw_0202_fy01{ width:72px; height:25px; line-height:25px; border:1px solid #d2d2d2; background:#ebebeb;}
.lmy-wrapper .Second_fuw_0202_fy td{ color:#505050; font-size:14px; text-align:center; height:25px; line-height:25px; cursor:default}
.lmy-wrapper .Second_fuw_0202_fy a{ color:#505050;}
.lmy-wrapper .Second_fuw_0202_fy01 input{color:#505050;}
.lmy-wrapper .Second_fuw_0202_fy01 a{ color:#505050;}
.lmy-wrapper .Second_fuw_0202_fy02{ width:17px;}
.lmy-wrapper .Second_fuw_0202_fydw{ width:10px;}
.lmy-wrapper .Second_fuw_0202_fy02bg{ background:url(fuw_img_01.jpg) repeat-x left center; height:25px; width:17px; color:#fff !important; }
.lmy-wrapper .Second_fuw_0202_fy03{ height:25px; width:33px; border:1px solid #d2d2d2; background:#ebebeb;}
.lmy-wrapper .Second_fuw_0202_fy03 input{ width:33px;  height:25px;}
.lmy-wrapper .Second_fuw_0202_fy04{ width:80px;}
.lmy-wrapper .Second_fuw_0202_fy05{ width:20px;}


/*文章页*/
.wzy-wrapper .xilanboxbg{ width:100%; background:#f2f2f2;}
.wzy-wrapper .Three_xilan_01{ width:1013px; border:1px solid #d3dcea; background:#fff;margin:0 auto;}
.wzy-wrapper .Three_xilan_02{ width:780px; padding-top:60px; padding-bottom:60px;margin:0 auto;word-break: break-all;}
.wzy-wrapper .Three_xilan_03{ font-size:38px; color:#333; text-align:center;width:100%; font-family:'微软雅黑'}
.wzy-wrapper .Three_xilan_04{ font-size:12px !important; color:#808080; width:100%; text-align:center; padding-top:20px;position:relative;}
.wzy-wrapper .Three_xilan_04 *{ font-size:12px !important;}
.wzy-wrapper .Three_xilan_04 a{ color:#808080}
.wzy-wrapper .Three_xilan_05{ height:0; width:100%; border-top:1px solid #d4d4d4; }
.wzy-wrapper .Three_xilan_06{ height:333px; text-align:center; padding-top:20px;}
.wzy-wrapper .Three_xilan_06 img { width:500px;}
.wzy-wrapper .Three_xilan_07{ font-size:14px; color:#333; padding:50px 0; line-height:24px; text-align:justify;text-justify:inter-ideograph;line-height: 200%;font-size: 12pt;font-family:'宋体';}
.wzy-wrapper .Three_xilan_07 p{line-height: 200%;font-size: 12pt;font-family:'宋体';}
.wzy-wrapper .Three_xilan_08{float:left;position:relative;width:98px;margin-top: 20px;}
.wzy-wrapper .Three_xilan_08 ul{ font-size:0;}
.wzy-wrapper .Three_xilan_0801{font-size: 20px !important;font-weight:bold;color:#313131;text-align:center;width:98px;height:24px;line-height: 24px !important;font-family: "Microsoft YaHei" !important;}
.wzy-wrapper .Three_xilan_0802{ height:3px; width:98px; background:#de1f1a;}
.wzy-wrapper .Three_xilan_0803{ background:#4d4d4d; height:1px; width:780px; clear:both;}
.wzy-wrapper .Search_content_dw{ height:20px; clear:both;}



/*机构*/
.jg-wrapper .Second_jg_01{position:relative;clear:both;padding-left:0;width:1013px;height:36px;border:1px solid #dedede;border-top:1px solid #d42b2b;background:#f7f7f7;font-weight:700;font-size:16px;margin:0 auto;}
.jg-wrapper .Second_jg_0101{float:left;width:90px;height:36px;background:#d42b2b;color:#fff;text-align:center;font-weight:700;font-size:18px;line-height:36px;}
.jg-wrapper .Second_jg_0101 a{color:#fff;}
.jg-wrapper .Second_jg_02{padding-top:12px;width:1013px;margin:0 auto;}
.jg-wrapper .Second_jg_02Left{float:left;width:48%;}
.jg-wrapper .Second_jg_02Left01{padding-left:23px;height:34px;color:#333;text-align:left;font-size:16px;line-height:34px;}
.jg-wrapper .Second_jg_02Left01 a{color:#fff;}
.jg-wrapper .Second_jg_02Left02{text-align:center;}
.jg-wrapper .Second_jg_02Right{float:right;width:48%;}
.jg-wrapper .Second_jg_more{top:3px;height:36px;}
.jg-wrapper .Second_bszn_0401,.Second_jg_0301,.Second_jg_0302,.Second_nblist_0401,.zb_Right_05,.zb_Right_0501{float:left;padding:0 9px;height:36px;color:#666;font-weight:400;font-size:18px;line-height:36px;}
.jg-wrapper .Second_jg_0301 a{color:#666;font-weight:700;}
.jg-wrapper .Second_jg_0301color{background:#d42b2b;}
.jg-wrapper .Second_jg_0301color a{color:#fff;}
.jg-wrapper .Second_jg_03_contentbox{overflow-y:scroll;padding:25px 18px;width:975px;height:238px;border:1px solid #ccc;border-top:none;background:url(jg_img_01.jpg) repeat;color:#3d424c;font-size:12pt;line-height:2;margin:0 auto;}
.jg-wrapper .Second_jg_03_contentbox p{font-size:12pt;line-height:2;font-family:'SimSun';}
.jg-wrapper #Second_jg_0301_content{overflow:hidden;padding:25px 18px;width:975px;height:238px;margin:0 auto;}
.jg-wrapper .Second_jg_dw{height:30px;}
.jg-wrapper .Second_jg_04 + .Second_jg_dw{height:25px;}
.jg-wrapper .Second_jg_04,.Second_jg_05{padding-top:10px;width:1013px;margin:0 auto;}
.jg-wrapper .Second_jg_0401,.Second_jg_0402{float:left;margin-right:15px;width:240px;height:40px;border:1px solid #dfe1e5;background:#f0f2f7;text-align:center;font-size:14px;line-height:20px;margin-bottom:5px;}
.jg-wrapper .Second_jg_0401 a{display:block;color:#666;padding:0 10px;}
.jg-wrapper .Second_jg_0402{height:40px;line-height:20px;}
.jg-wrapper .Second_jg_dw01{clear:both;height:5px;}
.jg-wrapper .Second_jg_dw02{clear:both;height:10px;}
.jg-wrapper .Second_jg_0401:hover{background:#2b8ff8;}
.jg-wrapper .Second_jg_0401 a:hover{display:block;color:#fff;}
.jg-wrapper .Second_jg_05{clear:both;padding-bottom:50px;}
.jg-wrapper .Second_jg_0501{float:left;margin-right:12.5px;width:88px;height:30px;border:1px solid #dfe1e5;background:#f0f2f7;text-align:center;font-size:14px;line-height:30px;}
.jg-wrapper .Second_jg_0501 a{display:block;color:#666;}
.jg-wrapper .Second_jg_0501:hover{background:#2b8ff8;}
.jg-wrapper .Second_jg_0501 a:hover{display:block;color:#fff;}


/*机构-详情页*/
.jg-list-box{ width: 1013px; background: #fff; clear: both; padding-bottom: 30px; margin-bottom: 20px;margin-left:auto;margin-right:auto;}
.jg-list-left{ float: left; width: 700px;}
.jg-wrapper .Three_zhnlist_01{ font-size:16px; font-weight:bold; height:36px; border:1px solid #dedede; position:relative; border-top:1px solid #d42b2b; background:#f7f7f7; padding-left:18px; clear:both;}
.jg-wrapper .Three_zhnlist_03{ height:36px; color:#fff; font-size:16px; font-weight:bold; line-height:36px; text-align:center; padding:0 14px; float:left;padding-top:1px;margin-top:-1px;}
.jg-wrapper .Three_zhnlist_03 a{ color:#fff;}
.jg-list-right{ float:right; width: 280px;}
.jg-list-right-1{ width: 244px; margin: 0 auto;}
.jg-list-right-1 li{ height: 43px; line-height: 43px; width: 244px; background: #023e8a; font-size: 16px; color: #fff; text-align: center; margin: 20px 0; cursor: pointer;}
.jg-list-right-1-hover{background: #4a6fa7 !important;color:#fff;}
.jg-list-right-1-hover a{color:#fff;}
.jg-list-left-1{ font-size: 14px; color: #333; line-height: 24px; padding: 20px 18px;}
.jg-list-left-1 ul{ height:200px; clear: both;}
.jg-list-left-2{ float:left; width: 146px;}
.jg-list-left-3{ float:right; width: 514px;}
.jg-list-title{font-size:18px; font-weight: bold; color:#333; position: relative; width: 450px; float: left; font-family:"黑体"}
.jg-list-title a{font-size:14px; color: #1a92ff; position: absolute; right:-70px; top:0px; font-weight: normal;}
.jg-list-title a:hover{ text-decoration: underline;}
.jg-list-title span{ font-size:14px; padding-left: 5px; font-weight: normal !important;font-family:"宋体"}
.jg-list-text{ padding-top: 10px; font-size: 14px; line-height: 24px; height:170px; display: -webkit-box; -webkit-box-orient: vertical;-webkit-line-clamp: 7; overflow: hidden; text-indent: 2em; clear: both;}
.jg-list-line{ clear:both; height: 1px; border-bottom: 1px dashed #b1b8cb; margin: 40px 0;}
.jg-xq-left{float:left; width: 280px;}
.jg-xq-left img{ margin-top:20px;}
.jg-xq-left li{ text-align: center; font-family:'微软雅黑',"Myriad Set Pro","Helvetica Neue","Helvetica","Arial","sans-serif"}
.jg-xqy-wrapper .jq-xq-1{ height: 43px; line-height: 43px; width: 244px; background: #023e8a; font-size: 16px; color: #fff; text-align: center; /*margin: 20px 0;*/ cursor: pointer; margin-left: 16px;margin-top: 16px;}
.jg-xq-right{ float:right; width: 700px;}
.jq-xq-text-1{ font-size:20px; color: #1a92ff; padding-top: 20px; padding-left: 18px;}
.jq-xq-text-1 span{ font-size:16px; color: #333; padding-left: 15px;}
.jq-xq-text-2{ font-size:14px; text-indent: 2em; padding-top: 20px;}
.jq-xq-text-3{ font-size:14px; line-height: 30px; padding-top: 10px;}
.jg-xq-text-4{font-size:14px; line-height: 24px; color: #333; padding-top: 20px; padding-left: 18px; padding-right: 18px; }
.totop{position:fixed;right:30px;bottom:100px;display:block;width:48px;height:48px;background:url(gotop.png) no-repeat center;-webkit-transition: all 0.2s ease-in-out;}
.totop:hover{background:url(gotop-hover.png) no-repeat center;}
.jg-xq-right-1{ }
.contentLeft0102{ width:80%; float:left; font-size:14px; height:28px; line-height:28px; background:url(ico4.png) no-repeat left center; padding-left:15px;  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.contentLeft0102:hover{background-image:url(ico4.1.png);}
.contentLeft0102 img{ display:inline-block; margin-left:10px;}
.contentLeft0102 a{ color:#333; display:block;  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.contentLeft0102 a:hover{ color:#1a92ff; text-decoration:underline; display:block; }


/*新闻*/
.news_lunimgbox{ width:1013px; clear:both;margin:0 auto;}
.news_lunimgLeft{ width:516px; height:300px; float:left;}
.news_lunimgLeft01{width:516px; }
.news_lunimgLeft02{width:516px; height:300px;}
.news_lunimgRight{ width:496px; height:300px; float:left;}
.Second_news_01,.Second_news_04box,.Second_zhw_02,.Second_zhw_0401,.Second_fuw_08_01,.Second_hud_0101,.Second_zht_0101{ font-size:16px; font-weight:bold; width:496px; height:36px; border:1px solid #dedede; position:relative; border-top:1px solid #d42b2b; background:#f7f7f7; padding-left:0px;}
.Second_news_0101,.Second_news_0201,.Second_news_0204,.Second_news_0301,.Second_news_0401,.Second_zhw_0501,.Second_zhw_0503,.Second_news_0701{ width:90px; height:36px; color:#fff; font-size:18px; font-weight:bold; line-height:36px; text-align:center; float:left;padding:0 10px;padding-top: 1px;margin-top: -1px;}
.Second_news_0204{ font-weight:normal;color:#666;width:2px;}
.Second_news_0101 a{ color:#666}
.Second_news_0101bg a{ color:#fff;}
.Second_news_0101_content,.Second_news_0201_content,.Second_news_0701_content{width:476px;  padding-left:18px; padding-top:20px; height:255px;}
.Second_news_02{ width:1013px;margin:0 auto;}
.Second_news_02Left{ width:496px; float:left;}
.Second_news_0201 a{ color:#666}
.Second_news_0201bg a{ color:#fff;}
.Second_news_0701 a{ color:#666}
.Second_news_0701bg a{ color:#fff;}
.Second_news_dw{ height:30px; clear:both;}
.Second_news_02Right{ float:right; width:496px;}
.Second_news_0301 a{ color:#fff;}
.Second_news_0301_content{width:476px; padding-top:20px; height:255px; padding-left:18px;}
.Second_news_0302Left{ width:130px; height:100px; overflow:hidden; float:left;}
.Second_news_0302Left img{width:130px; height:100px;}
.Second_news_0302Right{ float:left; width:330px; padding-left:16px; height:100px; overflow:hidden;}
.Second_news_0303{ font-size:18px; }
.Second_news_0303 a{color:#4c4c4c; width:100%;  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;display:block;}
.Second_news_0303 br{display:none;}
.Second_news_0304{ width:100%; height:20px; line-height:20px;}
.Second_news_0304 span{ font-size:12px; color:#b2b2b2;}
.Second_news_03line{ background:url(news_img_03.png) repeat-x left center; height:14px; width:100%;}
.Second_news_0305{ font-size:12px; position:relative; line-height:20px;}
.Second_news_0305more{ position:absolute; right:0; bottom:-20px; font-size:12px;}
.Second_news_0305more a{ color:#107bcc !important;}
.Second_news_0305 a{ color:#666;}
.Second_news_03dw{ height:20px; clear:both;}
.Second_news_04,.Second_news_04box{ width:1013px; padding-left:0 !important;margin:0 auto;}
.Second_news_0401 a{ color:#666;}
.Second_news_0401bg a{ color:#fff;}
.Second_news_04dw{ height:5px;}
.Second_news_0401_content{ clear:both; overflow:hidden; position:relative;}
.Second_news_0401_content01,.Second_news_0402_content01{ float:left; width:324px; height:230px; overflow:hidden; margin-right:20px;*margin-right:20px;_margin-right:20px; position:relative;}
.Second_news_0401_content01 img{ height:230px; width:324px;}
.Second_news_0401_content02 img{ height:230px; width:324px;}
.Second_news_0401_content01N img{ height:230px; width:324px;}
.Second_news_0401_contentimg{ }
.Second_news_0401_contentpre,.Second_news_0402_contentpre{ background:url(news_img_01h.png) no-repeat center; height:36px; width:36px; position:absolute; z-index:99; top:40%; left:10px; cursor:pointer;}
.Second_news_0401_contentnext,.Second_news_0402_contentnext{ background:url(news_img_02h.png) no-repeat center; height:36px; width:36px; position:absolute; z-index:99; top:40%; right:10px; cursor:pointer;}
.Second_news_0401_contentpreH,.Second_news_0402_contentpreH{background:url(news_img_01.png) no-repeat center;}
.Second_news_0401_contentnextH,.Second_news_0402_contentnextH{background:url(news_img_02.png) no-repeat center;}
.Second_news_0401_content01text{ background:rgba(0, 0, 0, 0.8)!important;
    filter:Alpha(opacity=80); background:#000; /*　使用IE专属滤镜实现IE背景透明*/; position:absolute;  color:#fff; padding-left:3%; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; height:30px; line-height:30px; width:97%; bottom:0;}
.Second_news_0401_content01text p{ position:relative !important;}
.Second_news_0401_content01text a{color:#ffffff;}
.Second_news_04{ padding-bottom:40px;}

.bf{ position:absolute; font-size:50px; color:#fff; top:30%; left:50%; width:60px; height:60px; margin-left:-30px;}
.bf a{color:#fff;}
.bf01{ position:absolute; font-size:30px; color:#fff; top:30%; left:50%; width:24px; height:24px; margin-left:-12px;}
.bf01 a{color:#fff;}

.news_lunimgLeft01{width:516px;}
.contentLeft0102box{clear:both;font-size:0;}
.contentLeft0102time{float:right;height:30px;color:#999;font-size:14px;line-height:30px;}


/*图片轮播*/
.imgneNew{position:relative;clear:both;overflow:initial;padding-top:0;width:1013px;}
.imgLeft{position:relative;z-index:1;float:left;overflow:hidden;padding-top:1px;width:667px;height:347px;}
.area{position:relative;overflow:hidden;width:668px;cursor:pointer;}
.qq{z-index:200;display:none;}
.prevBtn{position:absolute;top:45%;left:10px;display:block;BACKGROUND:url(news_img_01h.png) no-repeat;HEIGHT:36px;WIDTH:36px;}
.nextBtn{position:absolute;top:45%;right:10px;display:block;background:url(news_img_02h.png) no-repeat;HEIGHT:36px;WIDTH:36px;}
.js{margin:0 auto;POSITION:relative;WIDTH:668px;HEIGHT:347px;}
.imgtext01{position:absolute;bottom:0;width:100%;height:40px;background:rgba(0,0,0,.8)!important;background:#000;filter:Alpha(opacity=60);}
.imgtext0101{position:relative;float:left;display:block;overflow:hidden;padding-left:5px;width:80%;height:40px;color:#fff;text-overflow:ellipsis;white-space:nowrap;line-height:40px;}
.imgtext0101 a{color:#fff;}
.jsNav{position:absolute;right:0;bottom:10px;}
.jsNav a{float:left;display:inline;display:block;margin-right:6px;width:20px;height:20px;background:url(dot.png) no-repeat center;color:#000;text-align:center;font-size:14px;line-height:20px;}
.jsNav .imgSelected{background:url(dot1.png) no-repeat center;color:#fff;}



.Second_zhw_01,.Second_zhw_04{clear:both;width:1013px;margin:0 auto;}
.Second_zhw_01Left{float:left;width:668px;}
.Second_zhw_02{width:668px;}
.Second_zhw_0201,.Second_zhw_0401a{float:left;margin-right:0;width:90px;height:36px;background:#d42b2b;color:#fff;text-align:center;font-weight:700;font-size:18px;line-height:36px;}
.Second_zhw_0201 a{color:#fff;}
.Second_fuw_0202,.Second_fuw_0602,.Second_fuw_dw,.Second_zhw_0202,.Second_zhw_0203,.Second_zhw_0402{float:left;width:90px;height:36px;color:#fff;text-align:center;font-weight:700;font-size:16px;line-height:36px;}
.Second_zhw_0202 a{color:#666;}
.Second_fuw_0202 a{color:#666;}
.Second_fuw_0602 a{color:#666;}
.Second_zhw_0203{width:2px;color:#666;}
.Second_zhw_0202bg a{color:#107bcc;}
.Second_fuw_0202bg a{color:#107bcc;}
.Second_fuw_0602bg a{color:#107bcc;}
.Second_fuw_0202bg,.Second_fuw_0602bg,.Second_zhw_0202bg{background:url(zhw_img_01.png) no-repeat center bottom;}
.Second_fuw_0602_content,.Second_zhw_0202_content,.Second_zhw_0501_content,.Second_zhw_0503_content{padding-top:14px;height:200px;}
.Second_zhw_01Right{float:right;width:324px;}
.Second_zhw_03{height:38px;background:#d42b2b;text-align:center;font-weight:700;font-size:18px;line-height:38px;}
.Second_zhw_03 a{color:#fff;}
.Second_zhw_0301,.Second_zhw_0302,.Second_zhw_0303,.Second_zhw_0304{float:left;padding-top:102px;width:160px;height:26px;border:1px solid #ececec;text-align:center;font-size:14px;}
.Second_zhw_0301 a{display:block;color:#242424;}
.Second_zhw_0302 a{color:#242424;}
.Second_zhw_0303 a{color:#242424;}
.Second_zhw_0304 a{color:#242424;}
.Second_zhw_0302{border-left:none;}
.Second_zhw_0303{border-top:none;}
.Second_zhw_0304{border-top:none;border-left:none;}
.Second_zhw_0302H{border-left:none;}
.Second_zhw_0303H{border-top:none;}
.Second_zhw_0304H{border-top:none;border-left:none;}
.Second_zhw_0401{width:668px;}
.Second_zhw_0402 a{color:#666;}
.Second_zhw_0402bg a{color:#107bcc;}
.Second_zhw_0402bg{background:url(zhw_img_01.png) no-repeat center bottom;}
.Second_zhw_0402_content{padding-top:14px;height:240px;}
.Second_zhw_0401a a{color:#fff;}
.Second_zhw_0403{width:200px;}
.Second_zhw_0402_content,.Second_zhw_05{width:1013px;}
.Second_zhw_0402_contentLeft,.Second_zhw_05Left{float:left;width:640px;}
.Second_zhw_0402_contentRight,.Second_zhw_05Right{float:right;width:640px;}
.Second_zhw_0501 a{color:#666;}
.Second_zhw_05{padding-bottom:50px;}
.Second_zhw_0501bg a{color:#fff;}
.Second_zhw_0503 a{color:#666;}
.Second_zhw_0503bg a{color:#fff;}
.Second_zhw_0601{float:right;width:324px;}
.Second_zhw_0601{position:relative;padding:0;width:324px;height:36px;border:1px solid #dedede;border-top:1px solid #d42b2b;background:#f7f7f7;font-weight:700;font-size:16px;}
.Second_zhw_0601a{float:left;margin-right:0;width:105px;height:36px;background:#d42b2b;color:#fff;text-align:center;font-weight:700;font-size:18px;line-height:36px;}
.Second_zhw_0601a a{color:#fff;}
.Second_zhw_0602{float:left;width:105px;height:36px;color:#fff;text-align:center;font-weight:700;font-size:16px;line-height:36px;}
.Second_zhw_0602 a{color:#666;}
.Second_zhw_0602bg{background:url(zhw_img_01.png) no-repeat center bottom;}
.Second_zhw_0602_content{padding-top:14px;height:240px;}
.Second_zhw_0602_contentLeft{float:left;padding-top:20px;padding-left:23px;}



/*互动*/
.Second_hud_01{clear:both;width:1013px;margin:0 auto;}
.Second_hud_01Left{float:left;width:668px;}
.Second_hud_0101{width:668px;}
.Second_hud_0102{clear:both;padding-top:20px;width:668px;height:180px;}
.Second_hud_0102Left{float:left;width:120px;height:90px;}
.Second_hud_0102Right{float:left;padding-left:25px;width:523px;}
.Second_hud_0103{padding-top:3px;padding-bottom:3px;padding-left:30px;width:437px;background:url(hud_img_01.png) no-repeat left center;color:#4c4c4c;font-size:18px;}
.Second_hud_0103 a{color:#4c4c4c;white-space: nowrap;text-overflow: ellipsis;display: inline-block;max-width: 100%;overflow: hidden;}
.Second_hud_0103z{background:url(hud_img_02.png) no-repeat left 5px;}
.Second_hud_0104,.Second_hud_0105{padding-top:13px;color:grey;font-size:12px;line-height:18px;}
.Second_hud_0104 a{color:#4c4c4c;white-space: nowrap;text-overflow: ellipsis;display: inline-block;max-width: 100%;overflow: hidden;}
.Second_hud_0105{padding-top:4px;}
.Second_hud_01Right{float:right;width:324px;}
.hd-wrapper .Second_hud_02{margin:0 auto;}
.Second_hud_02,.Second_hud_02_content,.Second_hud_04{padding-top:20px;width:298px;}
.Second_hud_0201{position:relative;float:left;width:95px;height:28px;border:1px solid #dadada;background:#ededed;color:#7e7e7e;text-align:center;font-size:14px;font-size:14px;line-height:28px;cursor:pointer;}
.Second_hud_0202{width:95px;height:28px;background:url(hud_img_02.jpg) repeat-x left center;color:#fff;}
.Second_hud_0202img{position:absolute;bottom:-6px;left:50%;margin-left:-6.5px;width:13px;height:6px;}
.Second_hud_02_content{clear:both;padding-top:5px;}
.Second_hud_03{padding-top:10px;width:302px;height:129px;text-align:center;}
.Second_hud_0301{padding:0 16px;width:258px;color:#fff;font-weight:700;font-size:16px;line-height:20px;}
.Second_hud_0301 a{color:#fff;}
.Second_hud_0302{padding:0 16px;padding-top:15px;width:258px;color:#7f7f7f;text-align:left;text-indent:2em;font-size:12px;line-height:20px;}
.Second_hud_0302 a{color:#7f7f7f;}
.Second_fuw_03dw{clear:both;height:20px;}
.Second_hud_04{text-align:center;}
.Second_hud_01dw{height:50px;}
.Second_hud_0301bg{height:36px;border:1px solid #dedede;border-top:1px solid #d42b2b;background:#f7f7f7;}
.Second_hud_wyly{float:left;margin-left:18px;width:90px;height:36px;font-size:16px;line-height:36px;}
.Second_hud_wyly a{color:#107bcc;}
.Second_hud_wyly a:hover{color:#333;}
.Second_hud_04 a{color:#fff;}
.hud01{float:left;width:145px;height:34px;background:#004283;font-size:14px;line-height:34px;}
.hud02{float:right;width:145px;height:34px;background:#004283;font-size:14px;line-height:34px;}
.doctitle{float:left;margin:2px;padding-left:15px;width:67%;border:1px dashed #666;}
.doctitle a{color:#333;font-size:15px;line-height:36px;white-space: nowrap;overflow: hidden;display: inline-block;max-width: 100%;text-overflow: ellipsis;}
.doctitle a:hover{color:#1a92ff;}
.doctime{float:left;margin:2px;width:20%;border:1px dashed #666;text-align:center;}
.tim{color:grey;font-size:13px;font-family:'宋体';line-height:36px;}
.docstatus{float:left;margin:2px;width:9%;border:1px dashed #666;text-align:center;}
.stu{color:grey;font-size:13px;font-family:'宋体';line-height:36px;}
.hd-wrapper .Second_news_0101,
.hd-wrapper .Second_news_0201,
.hd-wrapper .Second_news_0204,
.hd-wrapper .Second_news_0301,
.hd-wrapper .Second_news_0401,
.hd-wrapper .Second_zhw_0501,
.hd-wrapper .Second_zhw_0503,
.hd-wrapper .Second_news_0701{width:auto;padding-left:20px;padding-right:20px;}

/*专题*/
.Second_zht_01{clear:both;width:1013px;margin:0 auto;}
.Second_zht_0101{width:1011px;}
.Second_zht_0101 .Second_news_0301{width:auto;padding-left:20px;padding-right:20px;}
.Second_zht_0101 a{color:#fff;}
.Second_zht_0101Left{z-index:1;float:left;width:688px;}
#Second_zht_02{position:relative;z-index:1;float:left;width:100%;height:260px;}
#Second_zht_02{position:relative;display:block;margin:0;padding:0;width:100%;height:260px;list-style:none;}
#Second_zht_0201 li{position:absolute;display:block;margin:0;padding:0;width:100%;height:100%;list-style:none;}
#Second_zht_0201 li a{display:block;width:100%;height:100%;text-indent:-9999px;}
#pagination_zt{position:absolute;bottom:5px;left:50%;z-index:9900;display:block;margin:0;padding:5px 15px 5px 0;list-style:none;}
#pagination_zt li{float:left;display:block;margin-left:15px;width:10px;height:10px;border-radius:5px;background:#fff;list-style:none;opacity:.5;}
#pagination_zt li a{display:block;margin:0;padding:0;width:100%;height:100%;text-indent:-9999px;}
#pagination_zt li.current{background:#0092ce;}
.Second_zht_0101Right{float:right;padding:0 15px;padding-top:14px;width:294px;}
.Second_zht_0101dw{height:26px;color:#333;line-height:26px;}
.Second_zht_0102dw{height:28px;line-height:28px;font-size:14px;}
.Second_zht_03Left{position:relative;float:left;overflow:hidden;width:299px;height:259px;}
.Second_zht_03Right{float:left;width:712px;}
.Second_zht_0301{position:relative;float:left;width:252px;height:129px;border:1px solid #e6e6e6;border-top:none;background:#fff;}
.Second_zht_0301sj{position:relative;float:left;width:236px;height:129px;border:1px solid #e6e6e6;border-top:none;background:#fff;}
.Second_zht_0302{border-right:none;border-left:none;background:#fafbfc;}
.Second_zht_0301img{position:absolute;right:6px;bottom:15px;}
.Second_zht_0301 a{display:block;padding-top:15px;padding-left:18px;width:218px;height:114px;color:#242424;}
.Second_zht_0301sj a{padding-top:15px;padding-left:18px;width:218px;color:#242424;}
.Second_zht_03border{border-top:1px solid #e6e6e6;}
.Second_zht_04{position:absolute;top:25px;left:20px;color:#fff;font-size:28px;}
.Second_zht_0303 span{float:left;display:block;width:140px;font-size:14px;line-height:28px;}
.zt-wrapper .Second_news_0101,
.zt-wrapper .Second_news_0201,
.zt-wrapper .Second_news_0204,
.zt-wrapper .Second_news_0301,
.zt-wrapper .Second_news_0401,
.zt-wrapper .Second_zhw_0501,
.zt-wrapper .Second_zhw_0503,
.zt-wrapper .Second_news_0701{width:auto;padding-left:20px;padding-right:20px;}



/*通用调整*/
.jg-wrapper .contentLeft0102time,
.xw-wrapper .contentLeft0102time{font-size:12px;}


.pagination{width: 1013px;margin: 0 auto;text-align: center;padding-bottom: 8px;}
.Three_xilan_03_01{font-size:24px;color:#333;text-align:center;width:100%;font-family:'微软雅黑';margin-bottom:10px;}
.Three_xilan_03_02{font-size:24px;color:#333;text-align:center;width:100%;font-family:'微软雅黑';margin-top:10px;}



.Second_jg_centd-c{width: 49.7%;display: table;vertical-align: top;line-height:34px;display: inline-block;position: relative;box-sizing:border-box;}
.Second_jg_centd-l{width: 57px;padding-left: 23px;font-weight:bold;display: table-cell;text-align: center;}
/*.Second_jg_centd-r{display: table-cell;padding-right:24px;padding-left: 23px;}*/
.Second_jg_centd-r{display: table-cell;padding-left: 23px;}
.Second_jg_centd-c:nth-child(2n){padding-left:10px;}
.Second_jg_centd-c:nth-child(2n) .Second_jg_centd-r{padding-right:0;}
.jg-wrapper .Second_jg_0401:nth-child(4n){margin-right:0;}
.jg-xq-right-1{padding-top: 32px;font-size: 12pt;line-height: 2;font-family: SimSun;}
.prevBtn:hover { background:url(news_img_01.png) no-repeat;}
.nextBtn:hover { background:url(news_img_02.png) no-repeat;}




.gzlogo{text-align:center;height:60px;position: relative;top: 15px;}
.gzlogocon{height:60px;line-height:60px;font-size: 40px;font-family: '方正小标宋简体';color:#FF0004;width: 500px;background: url(gh.png) no-repeat;background-size: 60px;padding-left: 60px;margin: 0 auto;}
.gzdownload{height:38px;width:896px;}
.gzdownloadcon{font-family: '微软雅黑';height: 36px;line-height: 36px;text-align: center;float: right;font-size: 14px;color: #666;border: 1px solid #d2d2d2;width: 88px;margin-right:12px;}
.gzdownloadcon a{color:#666}
.gzblueline{border-bottom: 5px solid #015293;width: 1013px;position: relative;left: -116px; height: 12px;margin-bottom: 58px;}
.gzbluebotline{border-bottom: 5px solid #015293;width: 1013px;position: relative;left: -116px;    height: 70px;margin-bottom: 40px;}
.gzpub{text-align: right;font-size: 28px;font-family:'方正小标宋简体';color: #015293;line-height:40px;}
.gztitle{font-size: 28px !important;font-family: '方正小标宋简体' !important;line-height: 1.5 !important;text-align: center !important;}
.gztz{font-family: '仿宋' !important;font-size: 18px !important;text-align: center !important;padding-top: 18px !important;}
/*
.wzy-wrapper .Three_xilan_07 table{max-width:100% !important;table-layout:fixed;width:100%;}
.wzy-wrapper .Three_xilan_07 table tr,
.wzy-wrapper .Three_xilan_07 table td{width:auto !important;}
*/


.wzy-wrapper .Three_xilan_07 img{max-width:100%;height:auto !important;}
.wzy-wrapper .Three_xilan_07 h1,
.wzy-wrapper .Three_xilan_07 h2,
.wzy-wrapper .Three_xilan_07 h3,
.wzy-wrapper .Three_xilan_07 h4,
.wzy-wrapper .Three_xilan_07 h5,
.wzy-wrapper .Three_xilan_07 h6{font-weight: bold;}